Tables [dbo].[OrderSuperProductAttributeValue]
Properties
PropertyValue
Created10:31:30 AM Tuesday, March 02, 2010
Last Modified11:40:05 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_OrderSuperProductAttributeValue: OrderSuperProductAttributeValueIDOrderSuperProductAttributeValueIDint4
No
1 - 1
Foreign Keys FK_OrderSuperProductAttributeValue_OrderSuperProductAttribute: [dbo].[OrderSuperProductAttribute].OrderSuperProductAttributeIDOrderSuperProductAttributeIDint4
No
Titlevarchar(128)128
No
SortOrderint4
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_OrderSuperProductAttributeValue: OrderSuperProductAttributeValueIDPK_OrderSuperProductAttributeValueOrderSuperProductAttributeValueID
Yes
Foreign Keys Foreign Keys
NameUpdateDeleteColumns
FK_OrderSuperProductAttributeValue_OrderSuperProductAttributeCascadeCascadeOrderSuperProductAttributeID->[dbo].[OrderSuperProductAttribute].[OrderSuperProductAttributeID]
SQL Script
CREATE TABLE [dbo].[OrderSuperProductAttributeValue]
(
[OrderSuperProductAttributeValueID] [int] NOT NULL IDENTITY(1, 1),
[OrderSuperProductAttributeID] [int] NOT NULL,
[Title] [varchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SortOrder] [int] NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[OrderSuperProductAttributeValue] ADD CONSTRAINT [PK_OrderSuperProductAttributeValue] PRIMARY KEY CLUSTERED ([OrderSuperProductAttributeValueID]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[OrderSuperProductAttributeValue] ADD CONSTRAINT [FK_OrderSuperProductAttributeValue_OrderSuperProductAttribute] FOREIGN KEY ([OrderSuperProductAttributeID]) REFERENCES [dbo].[OrderSuperProductAttribute] ([OrderSuperProductAttributeID]) ON DELETE CASCADE ON UPDATE CASCADE
GO
Uses
Used By